home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strncat.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  105 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.07.05;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.04.25.13.25.48;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * strncat.c --
  31.  *
  32.  *    Source code for the "strncat" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strncat.c,v 1.1 88/04/25 13:25:48 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif /* not lint */
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * strncat --
  54.  *
  55.  *    Copy one string (src) onto the end of another (dst), with a
  56.  *    limit on how many bytes to copy.
  57.  *
  58.  * Results:
  59.  *    The return value is a pointer to the destination string, dst.
  60.  *
  61.  * Side effects:
  62.  *    None.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. char *
  68. strncat(dst, src, numChars)
  69.     register char *src;        /* Place from which to copy. */
  70.     char *dst;            /* Destination string:  *srcPtr gets added
  71.                  * onto the end of this. */
  72.     register int numChars;    /* Maximum number of chars to copy. */
  73. {
  74.     register char *copy = dst;
  75.  
  76.     if (numChars == 0) {
  77.     return dst;
  78.     }
  79.  
  80.     do {
  81.     } while (*copy++ != 0);
  82.     copy -= 1;
  83.  
  84.     do {
  85.     if ((*copy++ = *src++) == 0) {
  86.         return dst;
  87.     }
  88.     } while (--numChars > 0);
  89.     *copy = 0;
  90.     return dst;
  91. }
  92. @
  93.  
  94.  
  95. 1.1
  96. log
  97. @Initial revision
  98. @
  99. text
  100. @d17 4
  101. a20 2
  102. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  103. #endif not lint
  104. @
  105.